home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / tpega.zip / GPCOLOR.P < prev    next >
Text File  |  1986-01-26  |  661b  |  14 lines

  1. {                                                                             }
  2. {       EGA Graphic Primitive for Turbo Pascal 3.01A, Version 01Feb86.        }
  3. {       (C) 1986 by Kent Cedola, 2015 Meadow Lake Ct., Norfolk, VA, 23518     }
  4. {                                                                             }
  5. {       Description: Set the current color to be used by other graphic        }
  6. {       primitives.                                                           }
  7. {                                                                             }
  8.  
  9. procedure GPCOLOR(Color: Integer);
  10. begin
  11.     GDCOLOR := Color;
  12.     GDS_FLG := 0;
  13. end;
  14.